home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 April / CMCD0404.ISO / Software / Shareware / Programare / sharp / wwwSharp_setup.exe / {app} / Examples / HtmlTimeTransitions / filldxfiltran.js < prev    next >
Text File  |  2001-05-09  |  2KB  |  108 lines

  1. var lastTab = null;
  2. //activated when pressing on the tab
  3. function tabToggle(tabID){
  4.  
  5.  
  6.     if ((lastTab != tabID) && (lastTab != null)){
  7.         lastTab.style.zIndex = "1";
  8.         lastTab.style.top = "3";
  9.         lastTab.style.backgroundImage='url(UI_graytab.gif)';
  10.         lastTab.style.fontWeight='normal';
  11.         lastTab.style.paddingTop='2px';
  12.         }
  13.     if (tabID.style.zIndex == "3")
  14.         {
  15.           tabID.style.zIndex = "3";
  16.           tabID.style.top = "0";
  17.         tabID.style.backgroundImage='url(UI_bluetab.gif)';
  18.         tabID.style.fontWeight='bold';
  19.         tabID.style.paddingTop='4px';
  20.         }
  21.     else 
  22.         {
  23.         tabID.style.zIndex = "3"; 
  24.         tabID.style.top = "0";
  25.         tabID.style.backgroundImage='url(UI_bluetab.gif)';
  26.         tabID.style.fontWeight='bold';
  27.         tabID.style.paddingTop='4px';
  28.            lastTab = tabID;
  29.         }
  30. }
  31.  
  32.  
  33. var lastDisplay = null;
  34.  
  35. function displayToggle(displayID){
  36.  
  37.     if ((lastDisplay != displayID) && (lastDisplay != null)){
  38.       lastDisplay.style.display="none";
  39.     }
  40.     if (displayID.style.display=="block"){
  41.       displayID.style.display="block";
  42.     }
  43.     else {displayID.style.display="block"; 
  44.          lastDisplay = displayID;
  45.     }
  46. }
  47.  
  48. panState=0
  49. function panelExp()
  50. {
  51.     if(panState=='0')
  52.     {
  53.     oPanel.style.width='670';
  54.     panState=1;
  55.     }
  56.     else
  57.     {
  58.     oPanel.style.width='400';
  59.     panState=0;
  60.     }
  61. }
  62.  
  63.  
  64. var bTranState = 0;
  65. function fnToggle() {
  66. //can I Apply to the div?
  67.            oTransContainer.filters[0].Apply();
  68.     if (bTranState=='0') { 
  69.         bTranState = 1;
  70.         oDIV2.style.visibility="visible"; 
  71.         oDIV1.style.visibility="hidden";   
  72.         }
  73.     else {  
  74.         bTranState = 0;
  75.         oDIV2.style.visibility="hidden"; 
  76.         oDIV1.style.visibility="visible";  
  77.         }
  78.         
  79.         oTransContainer.filters[0].Play();
  80. }
  81. function copy2Clipboard()
  82. {
  83.   textRange = document.body.createTextRange();
  84.   textRange.moveToElementText(oCodeCopy);
  85.   textRange.execCommand("Copy");
  86. }
  87.  
  88. function maskOn(){
  89.  
  90.     if(    addMaskBT.innerText == 'Add Mask Filter')
  91.     {
  92.         addMaskBT.innerText='Remove Filter';
  93.         filterDIV.style.filter='progid:DXImageTransform.Microsoft.maskfilter()';
  94.         mColorHide.style.visibility='visible';
  95.         codeFilter.style.display='inline';    
  96.     }
  97.     else{
  98.         addMaskBT.innerText='Add Mask Filter';
  99.         filterDIV.style.filter='';
  100.         mColorHide.style.visibility='hidden';
  101.         codeFilter.style.display='none';    
  102.     }
  103. }
  104.  
  105. var alphaOne ='FF';
  106. var alphaTwo ='FF';
  107.  
  108.